home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Monster Media 1996 #15
/
Monster Media Number 15 (Monster Media)(July 1996).ISO
/
modem
/
ezdia175.zip
/
EZ4VB.ZIP
/
DIALUP.FRM
< prev
next >
Wrap
Text File
|
1995-11-06
|
1KB
|
49 lines
VERSION 2.00
Begin Form frmMainForm
BackColor = &H00C0C0C0&
Caption = "EZDialup - VB Example"
ClientHeight = 4020
ClientLeft = 1095
ClientTop = 1770
ClientWidth = 7365
Height = 4710
Left = 1035
LinkTopic = "Form1"
ScaleHeight = 4020
ScaleWidth = 7365
Top = 1140
Width = 7485
WindowState = 2 'Maximized
Begin Menu mnuFile
Caption = "&File"
Begin Menu mnuConnect
Caption = "&Connect"
End
Begin Menu mnuSep1
Caption = "-"
End
Begin Menu mnuFileExit
Caption = "E&xit"
End
End
End
Option Explicit
Sub Form_Unload (Cancel As Integer)
End
End Sub
Sub mnuConnect_Click ()
frmConnect.Show
Me.Enabled = False
'VB 3.0 won't let us access methods in another form, so
'we simulate a 'click' on the cmdConnect button on frmConnect
'to invoke it's _Click event.
frmConnect!cmdConnect.Value = True
End Sub
Sub mnuFileExit_Click ()
End
End Sub